home *** CD-ROM | disk | FTP | other *** search
/ Game Classics 1 / Game Classics 1.iso / dosgames / tfdemo / tiedemo.bat < prev    next >
DOS Batch File  |  1994-08-01  |  341b  |  18 lines

  1. @echo off
  2. rem Batch File for Hooking NEON and TIE Fighter DEMO Together
  3. :top
  4. neon
  5. rem look for 'G' or ESC, anything else to game
  6. if errorlevel 71 goto do_game
  7. if errorlevel 28 goto do_game
  8. if errorlevel 27 goto quit
  9. rem else
  10. :do_game
  11. demo
  12. tiemiss demo >foo
  13. demo final
  14. goto top
  15. :quit
  16. echo     *** Exiting TIE Fighter Demo ***
  17.  
  18.